home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / MPW / MPW re2c 1.1 / basics.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-01  |  357 b   |  19 lines  |  [TEXT/KAHL]

  1. #ifndef _basics_h
  2. #define _basics_h
  3.  
  4. // $Log: basics.h,v $
  5. //Revision 1.1  1994/04/08  15:27:59  peter
  6. //Initial revision
  7. //
  8.  
  9. typedef unsigned int bool;
  10. const bool true = (0 == 0);
  11. const bool false = (!true);
  12.  
  13. typedef unsigned int     uint;
  14. typedef unsigned char     uchar, byte;
  15. typedef unsigned short     ushort, word;
  16. typedef unsigned long     ulong, dword;
  17.  
  18. #endif
  19.